home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / bash / bash-110 / mintve~1 / glob.zoo / glob / Makefile < prev    next >
Encoding:
Makefile  |  1991-11-05  |  497 b   |  22 lines

  1. # Makefile for glob
  2. # ST version (dpg)
  3.  
  4. CFLAGS = -O -fomit-frame-pointer -fcombine-regs
  5. CPPFLAGS = -DMiNT
  6.  
  7. glob.olb: glob.o tilde.o
  8.     $(CC) $(CFLAGS) $(CPPFLAGS) -c glob.c
  9.     $(CC) $(CFLAGS) $(CPPFLAGS) -c tilde.c
  10.     ar cs $@ glob.o tilde.o
  11.  
  12. glob16.olb: glob.o tilde.o
  13.     $(CC) $(CFLAGS) $(CPPFLAGS) -mshort -c glob.c
  14.     $(CC) $(CFLAGS) $(CPPFLAGS) -mshort -c tilde.c
  15.     ar cs $@ glob.o tilde.o
  16.  
  17. tilde-test: tilde.c
  18.     $(CC) $(CFLAGS) -o tilde-test -DTEST tilde.c
  19.  
  20. clean:
  21.     $(RM) *.o *.olb
  22.